home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / liboctave / rmdir.c < prev    next >
C/C++ Source or Header  |  1996-10-30  |  2KB  |  95 lines

  1. /* rmdir.c -- BSD compatible remove directory function for System V
  2.    Copyright (C) 1988, 1990 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. #ifdef HAVE_CONFIG_H
  19. #include <config.h>
  20. #endif
  21.  
  22. #ifndef HAVE_RMDIR
  23.  
  24. #ifdef HAVE_SYS_TYPES_H
  25. #include <sys/types.h>
  26. #endif
  27. #include <sys/stat.h>
  28.  
  29. #include <errno.h>
  30. #ifndef errno
  31. extern int errno;
  32. #endif
  33.  
  34. #ifdef STAT_MACROS_BROKEN
  35. #undef S_ISDIR
  36. #endif
  37.  
  38. #if !defined(S_ISDIR) && defined(S_IFDIR)
  39. #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  40. #endif
  41.  
  42. #include "safe-stat.h"
  43.  
  44. /* rmdir adapted from GNU tar.  */
  45.  
  46. /* Remove directory DPATH.
  47.    Return 0 if successful, -1 if not.  */
  48.  
  49. int
  50. rmdir (dpath)
  51.      char *dpath;
  52. {
  53.   int cpid, status;
  54.   struct stat statbuf;
  55.  
  56.   if (SAFE_STAT (dpath, &statbuf) != 0)
  57.     return -1;            /* errno already set */
  58.  
  59.   if (!S_ISDIR (statbuf.st_mode))
  60.     {
  61.       errno = ENOTDIR;
  62.       return -1;
  63.     }
  64.  
  65.   cpid = fork ();
  66.   switch (cpid)
  67.     {
  68.     case -1:            /* cannot fork */
  69.       return -1;        /* errno already set */
  70.  
  71.     case 0:            /* child process */
  72.       execl ("/bin/rmdir", "rmdir", dpath, (char *) 0);
  73.       _exit (1);
  74.  
  75.     default:            /* parent process */
  76.  
  77.       /* Wait for kid to finish.  */
  78.  
  79.       while (wait (&status) != cpid)
  80.     /* Do nothing.  */ ;
  81.  
  82.       if (status & 0xFFFF)
  83.     {
  84.  
  85.       /* /bin/rmdir failed.  */
  86.  
  87.       errno = EIO;
  88.       return -1;
  89.     }
  90.       return 0;
  91.     }
  92. }
  93.  
  94. #endif
  95.